home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / bbs / pprd199.zip / GETOPT.C < prev    next >
C/C++ Source or Header  |  1995-11-15  |  1KB  |  53 lines

  1. #include <stdio.h>
  2.  
  3. /*
  4.  * get option letter from argument vector
  5.  */
  6. int    opterr = 1,        /* useless, never set or used */
  7.     optind = 1,        /* index into parent argv vector */
  8.     optopt;            /* character checked for validity */
  9. char    *optarg;        /* argument associated with option */
  10.  
  11. #define BADCH    (int)'?'
  12. #define EMSG    ""
  13. #define tell(s)    fputs(*nargv,stderr);fputs(s,stderr); \
  14.         fputc(optopt,stderr);fputc('\n',stderr);return(BADCH);
  15.  
  16. getopt(nargc,nargv,ostr)
  17. int    nargc;
  18. char    **nargv,
  19.     *ostr;
  20. {
  21.     static char    *place = EMSG;    /* option letter processing */
  22.     register char    *oli;        /* option letter list index */
  23.     char    *strchr();
  24.  
  25.     if(!*place) {            /* update scanning pointer */
  26.         if(optind >= nargc || *(place = nargv[optind]) != '-' ||
  27.             !*++place) return(EOF);
  28.         if (*place == '-') {    /* found "--" */
  29.             ++optind;
  30.             return(EOF);
  31.         }
  32.     }                /* option letter okay? */
  33.     if ((optopt = (int)*place++) == (int)':' || !(oli = strchr(ostr,optopt))) {
  34.         if(!*place) ++optind;
  35.         tell(": illegal option -- ");
  36.     }
  37.     if (*++oli != ':') {        /* don't need argument */
  38.         optarg = NULL;
  39.         if (!*place) ++optind;
  40.     }
  41.     else {                /* need an argument */
  42.         if (*place) optarg = place;    /* no white space */
  43.         else if (nargc <= ++optind) {    /* no arg */
  44.             place = EMSG;
  45.             tell(": option requires an argument -- ");
  46.         }
  47.          else optarg = nargv[optind];    /* white space */
  48.         place = EMSG;
  49.         ++optind;
  50.     }
  51.     return(optopt);            /* dump back option letter */
  52. }
  53.